body {
  margin: 0;
  background-color: #f5f5f5;
}

::selection {
  background-color: #ff6c00;
}

.logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding-top: 5%;
  box-sizing: border-box;
  display: block;
}

.logocontainer{
  text-align: center;
}

.main {
  font-family: Helvetica, Sans-Serif;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.flex-direction{
  flex-direction:row;
}

.whatsup{
  font-family: Helvetica, Sans-Serif;
  margin:10px 3%;
  font-size: 30px;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.generaltext{
  font-family: Helvetica, Sans-Serif;
  margin-top: 80px;
  margin-left: 2.5%;
  margin-right: 2.5%;
  font-size: 20px;
  text-align: justify;
  color: #f5f5f5;
}

.leadertext{
  font-family: Helvetica, Sans-Serif;
  padding-top: 14.25%;
  padding-left: 10%;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hyperlink{
  font-family: Helvetica, Sans-Serif;
  margin:25px 10%;
  font-size: 20px;
  overflow: hidden;
  color: #070707;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hyperlink:visited{
  color: #070707;
}

.hyperlink:hover{
  color: #070707;
  filter: blur(0.6px);
}

.appendix{
  font-family: Helvetica, Sans-Serif;
  margin:15px 2.5%;
  font-size: 15px;
  text-align: left;
  color: #9C9C9C;
  overflow-wrap: normal;
  word-break: normal;
}

.appendixlist{
  margin: 1% 0%;
}

.section1 {
  width: 400px;
  min-width: 400px;
  min-height: 100vh;
  position: sticky;
  top: 0;
  background-color: #f5f5f5;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 0 16px;
}

.section2 {
  flex: 1;
  min-width: 0;
  min-height: 100vh;
  background-color: #0000CD;
}

@media (max-width: 768px) {
  .main {
    flex-direction: column;
  }

  .section1 {
    width: 100%;
    min-width: 0;
    height: auto;
    position: static;
  }

  .section2 {
    width: 100%;
    min-width: 0;
    min-height: auto;
  }

  .logo {
    width: 240px;
    height: auto;
  }
}